home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / edit / aurora2.zip / SYSTEM.AML < prev    next >
Text File  |  1995-01-26  |  2KB  |  74 lines

  1.  
  2. // ───────────────────────────────────────────────────────────────────
  3. // The Aurora Editor v2.0
  4. // Copyright 1993-1995 nuText Systems. All Rights Reserved Worldwide.
  5. //
  6. // System Settings (included by MAIN.AML)
  7. //
  8. // To change a setting, locate the desired setting in this file and
  9. // type in the new value. Character and string values should be
  10. // enclosed in quotes.
  11. //
  12. // When you are finished, save this file and select 'Recompile the
  13. // Editor' <alt f2> from the Set menu. Exit and re-enter the editor
  14. // for your changes to take effect.
  15. // ───────────────────────────────────────────────────────────────────
  16.  
  17.  
  18.   // enable/disable video blink mode (disabling the video blink mode
  19.   // allows the use of high intensity background colors)
  20.   blink OFF
  21.  
  22.   // set cursor size in insert and overlay modes
  23.   cursorsize
  24.       80       // cursor top in OVL mode (0-99)
  25.       90       // cursor bot in OVL mode (0-99)
  26.       50       // cursor top in INS mode (0-99)
  27.       90       // cursor bot in INS mode (0-99)
  28.  
  29.   // test for the enhanced keyboard
  30.   enhancedkbd ON
  31.  
  32.   // enable/disable the PC speaker
  33.   speaker ON
  34.  
  35.   // date and time format
  36.   international
  37.      0         // date format
  38.                //   0=mmddyy
  39.                //   1=ddmmyy
  40.                //   2=yymmdd
  41.  
  42.     '-'        // date separator character
  43.  
  44.      0         // time format
  45.                //   0=12hr
  46.                //   1=24hr
  47.                //   2=12hr with seconds
  48.                //   3=24hr with seconds
  49.  
  50.     ':'        // time separator character
  51.  
  52.     ','        // thousands separator character
  53.                //   (null=no separator)
  54.  
  55.  
  56.  
  57.   // system memory settings
  58.  
  59.   maxxms      -1                  // maximum XMS memory (in k) to use:
  60.                                   //    0=none
  61.                                   //   -1=available maximum
  62.  
  63.   maxems      -1                  // maximum EMS memory (in k) to use:
  64.                                   //    0=none
  65.                                   //   -1=available maximum
  66.  
  67.   swapfiles                       // swap files:
  68.      "c:\\aurora@1.swp"           //   primary swap file
  69.      "d:\\aurora@2.swp"           //   secondary swap file
  70.  
  71.   memoptions  'o'                 // memory options:
  72.                                   //   o=allow open files
  73.  
  74.